home *** CD-ROM | disk | FTP | other *** search
- /*
- * Make3DpicFromSwap v1.0
- * Arexx Macro for use with ImageFX
- *
- * Makes a picture 3D for use with Red & Blue glasses.
- * The Left and Right eye images must be in the Main and Swap buffers.
- *
- *
- * For multiple image processing use IMP and put this script in Proc.
- *
- * Written By Torgeir Holm ©1994
- *
- */
-
- OPTIONS RESULTS
-
- DrawMode Normal
- Blend 100
- EdgeMode Normal 0
- FillMode Solid 0 0 0 SMOOTH
-
-
- /* Make Red & Cyan buffers*/
-
- Buffer2Alpha
- ClearBuffer 0 0 0 FORCE
- ActiveColor 4
- MenuPalette
- SetPalette '-1' 0 255 255
- MenuToolbox
- AlphaChannel Frisket
- FloodFill 50 50 30
- Brightness '64'
- Swap
- Buffer2Alpha
- ClearBuffer 0 0 0 FORCE
- ActiveColor 5
- MenuPalette
- SetPalette '-1' 255 0 0
- MenuToolbox
- FloodFill 50 50 30
- Brightness '64'
-
-
- /* Combine the Images to make 3D image and free alpha channel memory*/
-
- Add
- KillAlpha
-
- EXIT
-